home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / aztecnos.arc / CMDPARSE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-17  |  447 b   |  19 lines

  1. #ifndef    NARG
  2.  
  3. #define    NARG        10    /* Max number of args to commands */
  4.  
  5. struct cmds {
  6.     char *name;        /* Name of command */
  7.     int (*func)();        /* Function to execute command */
  8.     int stksize;        /* Size of stack if subprocess, 0 if synch */
  9.         int  argcmin;        /* Minimum number of args */
  10.         char *argc_errmsg;    /* Message to print if insufficient args */
  11. };
  12. #ifndef    NULLCHAR
  13. #define    NULLCHAR    (char *)0
  14. #endif
  15.  
  16. #endif    /* NARG */
  17.  
  18.  
  19.